home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _B5A883C70B244432B24670A001EE0275 < prev    next >
Encoding:
Text File  |  2004-08-16  |  685 b   |  28 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Jasc Software, Inc.',
  6.         'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc.  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro',
  9.         'Host Version': u'8.10'
  10.         }
  11.  
  12. def Preset_BrushStrokes():
  13.     return {
  14.         'Angle': 0, 
  15.         'Bristles': 200, 
  16.         'Color': (249,249,225), 
  17.         'Density': 90, 
  18.         'Length': 2, 
  19.         'Opacity': 20, 
  20.         'Softness': 20, 
  21.         'Width': 2
  22.         }
  23.  
  24. def Do(Environment):
  25.     # Brush Strokes
  26.     App.Do( Environment, 'BrushStrokes',         Preset_BrushStrokes())
  27.  
  28.